:focus {
    outline: 0;
}

@font-face {
    font-family: "notdef";
    src: url("//webfont.zfont.cn/font_cn_web/notdef.zfont.cn");
    font-weight: normal;
    font-style: normal;
	font-display:swap;
}

.font_cn font,.font_tn font,.font_en font{}
.webfont_main {
    padding: 0px;
    min-width: 1200px;
    max-width: 1200px;
}

.edit_box{
	font-size: 64px;
	font-family: 'page_font','notdef';
    -webkit-user-modify: read-write-plaintext-only;
    /* border: 5px solid #F2F2F2; */
    line-height: 1.6;
    box-sizing: border-box;
    transition:0.0s;
    
    transition:font-size 0.2s;
    -moz-transition:font-size 0.2s; /* Firefox 4 */
    -webkit-transition:font-size 0.2s; /* Safari and Chrome */
    -o-transition:font-size 0.2s; /* Opera */
}

.edit_box:after{
    content: ' ';
    display: inline-block;
    width: 2px;
    height: -0.3em;
    border-radius: 2px;
    background: #636363;
    position: relative;
    top: -0.0em;
    left: 12px;
    animation: text-cursor 1.2s infinite;
}

.edit_box:focus:after{
    display: none
}

@keyframes text-cursor {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}


.lodingtext{
	font-size: 14px;
	color: #0066FF;
	text-align: center;
	margin-top: 5px;
}



input[type=range] {
    -webkit-appearance: none;
	background: -webkit-linear-gradient(#346fff, #346fff) no-repeat;
	background-size: 50% 100%;
    width: 300px;
    border-radius: 10px;
    width: 100px;
	transition:0.0s;
	box-shadow: 0 0px 0px #def3f8, inset 0 0px 10px #0d11121c;
      -webkit-appearance: none; /*清除系统默认样式.        */
      height: 5px; /*横条的高度*/
      /* margin-top: 14px; */
}

 input[type="range"]::-webkit-slider-thumb {
    width: 17px;
    height: 17px;
    border-radius: 20px;
    background-color: #fff;
    border: 4px solid #0066FF;
    cursor: pointer;
    -webkit-appearance: none;
    
    transition:width 0.2s;
    -moz-transition:width 0.2s; /* Firefox 4 */
    -webkit-transition:width 0.2s; /* Safari and Chrome */
    -o-transition:width 0.2s; /* Opera */
  }
  
input[type="range"]::-webkit-slider-thumb:hover{
    width: 22px;
}
input[type="range"]::-webkit-slider-thumb:active{
}
  
